blob: b48d77dc037a06a9410c1a0d64637d084b38ca97 [file] [log] [blame]
matozoid43e6f7b2011-10-30 14:40:57 +01001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3<modelVersion>4.0.0</modelVersion>
André Rouél486c1ef2013-02-20 08:27:38 +01004
matozoid43e6f7b2011-10-30 14:40:57 +01005<groupId>japa.javaparser</groupId>
6<artifactId>javaparser</artifactId>
7<packaging>jar</packaging>
8<version>1.0.9-SNAPSHOT</version>
André Rouél486c1ef2013-02-20 08:27:38 +01009
matozoid43e6f7b2011-10-30 14:40:57 +010010<name>javaparser</name>
11<url>http://code.google.com/p/javaparser/</url>
André Rouél486c1ef2013-02-20 08:27:38 +010012<inceptionYear>2007</inceptionYear>
matozoid43e6f7b2011-10-30 14:40:57 +010013<description>This package contains a Java 1.5 Parser with AST generation and visitor support.
14The AST records the source code structure, javadoc and comments. Soon will be
15possible change the AST nodes or create new ones to modify source code like refactoring.
16This parser is based on Sreenivasa Viswanadha Java 1.5 parser.</description>
André Rouél486c1ef2013-02-20 08:27:38 +010017
matozoid43e6f7b2011-10-30 14:40:57 +010018<issueManagement>
19<system>Google Code</system>
20<url>http://code.google.com/p/javaparser/issues/list</url>
21</issueManagement>
André Rouél486c1ef2013-02-20 08:27:38 +010022
23
matozoid43e6f7b2011-10-30 14:40:57 +010024<developers>
25<developer>
26<name>Júlio Vilmar Gesser</name>
27<email>jgesser@gmail.com</email>
28</developer>
29</developers>
30<contributors>
31<contributor>
32<name>Hendy Irawan</name>
33<email>hendy@soluvas.com</email>
34<url>http://www.HendyIrawan.com/</url>
35<organization>Soluvas</organization>
36<organizationUrl>http://www.Soluvas.com/</organizationUrl>
37</contributor>
38</contributors>
André Rouél486c1ef2013-02-20 08:27:38 +010039
matozoidd1ef1882011-10-30 19:29:19 +010040<properties>
41<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
André Rouél486c1ef2013-02-20 08:27:38 +010042<java.version>1.6</java.version>
43
44<!-- Maven Plugins -->
45<javacc-maven-plugin.version>2.6</javacc-maven-plugin.version>
46<maven-compiler-plugin.version>2.3.2</maven-compiler-plugin.version>
André Rouél486c1ef2013-02-20 08:27:38 +010047
48<!-- Test Dependencies -->
49<junit.version>4.8.1</junit.version>
50
matozoidd1ef1882011-10-30 19:29:19 +010051</properties>
André Rouél486c1ef2013-02-20 08:27:38 +010052
matozoid43e6f7b2011-10-30 14:40:57 +010053<scm>
André Rouél515c9962013-02-20 08:33:17 +010054<connection>scm:git:git://github.com/matozoid/javaparser.git</connection>
55<developerConnection>scm:git:git@github.com:matozoid/javaparser.git</developerConnection>
56<url>https://github.com/matozoid/javaparser.git</url>
57<tag>HEAD</tag>
matozoid43e6f7b2011-10-30 14:40:57 +010058</scm>
André Rouél486c1ef2013-02-20 08:27:38 +010059
matozoid43e6f7b2011-10-30 14:40:57 +010060<build>
matozoid43e6f7b2011-10-30 14:40:57 +010061<plugins>
62<plugin>
63<groupId>org.apache.maven.plugins</groupId>
64<artifactId>maven-compiler-plugin</artifactId>
André Rouél486c1ef2013-02-20 08:27:38 +010065<version>${maven-compiler-plugin.version}</version>
matozoid43e6f7b2011-10-30 14:40:57 +010066<configuration>
67<!-- http://maven.apache.org/plugins/maven-compiler-plugin/ -->
André Rouél486c1ef2013-02-20 08:27:38 +010068<source>${java.version}</source>
69<target>${java.version}</target>
matozoid43e6f7b2011-10-30 14:40:57 +010070</configuration>
71</plugin>
matozoidd1ef1882011-10-30 19:29:19 +010072<plugin>
73<groupId>org.codehaus.mojo</groupId>
74<artifactId>javacc-maven-plugin</artifactId>
André Rouél486c1ef2013-02-20 08:27:38 +010075<version>${javacc-maven-plugin.version}</version>
matozoidd1ef1882011-10-30 19:29:19 +010076<executions>
77<execution>
78<id>javacc</id>
79<goals>
80<goal>javacc</goal>
81</goals>
82</execution>
83</executions>
84</plugin>
matozoid43e6f7b2011-10-30 14:40:57 +010085</plugins>
Didier Villevalois1607b182012-08-30 17:44:45 +020086<pluginManagement>
87<plugins>
André Rouél486c1ef2013-02-20 08:27:38 +010088<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. -->
Didier Villevalois1607b182012-08-30 17:44:45 +020089<plugin>
90<groupId>org.eclipse.m2e</groupId>
91<artifactId>lifecycle-mapping</artifactId>
92<version>1.0.0</version>
93<configuration>
94<lifecycleMappingMetadata>
95<pluginExecutions>
96<pluginExecution>
97<pluginExecutionFilter>
98<groupId>
99org.codehaus.mojo
100</groupId>
101<artifactId>
102javacc-maven-plugin
103</artifactId>
104<versionRange>
105[2.6,)
106</versionRange>
107<goals>
108<goal>javacc</goal>
109</goals>
110</pluginExecutionFilter>
111<action>
112<ignore></ignore>
113</action>
114</pluginExecution>
115</pluginExecutions>
116</lifecycleMappingMetadata>
117</configuration>
118</plugin>
119</plugins>
120</pluginManagement>
matozoid43e6f7b2011-10-30 14:40:57 +0100121</build>
André Rouél486c1ef2013-02-20 08:27:38 +0100122
matozoid43e6f7b2011-10-30 14:40:57 +0100123<dependencies>
124<dependency>
125<groupId>junit</groupId>
126<artifactId>junit</artifactId>
André Rouél486c1ef2013-02-20 08:27:38 +0100127<version>${junit.version}</version>
matozoid43e6f7b2011-10-30 14:40:57 +0100128<scope>test</scope>
129</dependency>
130</dependencies>
André Rouél486c1ef2013-02-20 08:27:38 +0100131
matozoid43e6f7b2011-10-30 14:40:57 +0100132</project>